[XEND] Fix typos in vfb/vnc detect in image.py
authorAlastair Tse <atse@xensource.com>
Wed, 31 Jan 2007 15:22:33 +0000 (15:22 +0000)
committerAlastair Tse <atse@xensource.com>
Wed, 31 Jan 2007 15:22:33 +0000 (15:22 +0000)
Signed-off-by: Alastair Tse <atse@xensource.com>
tools/python/xen/xend/image.py

index eeb8bd0ebda2f268336ed5c7d2d20d3540aea622..e1f87e1e8f7aecec3de48837994eb804c7dca771 100644 (file)
@@ -450,10 +450,10 @@ class HVMImageHandler(ImageHandler):
 
         vnc_config = {}
         has_vfb = False
-        has_vnc = int(vmConfig['image'].get('vnc')) != 0
+        has_vnc = int(vmConfig['image'].get('vnc', 0)) != 0
         for dev_uuid in vmConfig['console_refs']:
-            dev_type, dev_info = vmConfig['devices'][devuuid]
-            if dev_type == 'rfb':
+            dev_type, dev_info = vmConfig['devices'][dev_uuid]
+            if dev_type == 'vfb':
                 vnc_config = dev_info.get('other_config', {})
                 has_vfb = True
                 break